home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / ARPTYPES.C < prev    next >
C/C++ Source or Header  |  1988-12-05  |  385b  |  24 lines

  1. /* define ARP types as a separate module to allow ARP tracing */
  2. /* in a package without IP */
  3.  
  4. #include "global.h"
  5. #include "mbuf.h"
  6. #include "timer.h"
  7. #include "iface.h"
  8. #include "arp.h"
  9.  
  10. struct arp_type arp_type[NHWTYPES];
  11.  
  12. char *arptypes[] = {
  13.     "NET/ROM",
  14.     "10 Mb Ethernet",
  15.     "3 Mb Ethernet",
  16.     "AX.25",
  17.     "Pronet",
  18.     "Chaos",
  19.     "6",
  20.     "Arcnet",
  21.     "Appletalk"
  22. };
  23.  
  24.